home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / setup / vbnet / 22 xml and adonet / xmldemo / startupform.vb < prev    next >
Encoding:
Text File  |  2001-12-22  |  3.9 KB  |  109 lines

  1. Public Class StartupForm
  2.     Inherits System.Windows.Forms.Form
  3.  
  4. #Region " Windows Form Designer generated code "
  5.  
  6.     Public Sub New()
  7.         MyBase.New()
  8.  
  9.         'This call is required by the Windows Form Designer.
  10.         InitializeComponent()
  11.  
  12.         'Add any initialization after the InitializeComponent() call
  13.  
  14.     End Sub
  15.  
  16.     'Form overrides dispose to clean up the component list.
  17.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
  18.         If disposing Then
  19.             If Not (components Is Nothing) Then
  20.                 components.Dispose()
  21.             End If
  22.         End If
  23.         MyBase.Dispose(disposing)
  24.     End Sub
  25.  
  26.     'Required by the Windows Form Designer
  27.     Private components As System.ComponentModel.IContainer
  28.  
  29.     'NOTE: The following procedure is required by the Windows Form Designer
  30.     'It can be modified using the Windows Form Designer.  
  31.     'Do not modify it using the code editor.
  32.     Friend WithEvents Button1 As System.Windows.Forms.Button
  33.     Friend WithEvents Button2 As System.Windows.Forms.Button
  34.     Friend WithEvents Button3 As System.Windows.Forms.Button
  35.     Friend WithEvents Button4 As System.Windows.Forms.Button
  36.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  37.         Me.Button1 = New System.Windows.Forms.Button()
  38.         Me.Button2 = New System.Windows.Forms.Button()
  39.         Me.Button3 = New System.Windows.Forms.Button()
  40.         Me.Button4 = New System.Windows.Forms.Button()
  41.         Me.SuspendLayout()
  42.         '
  43.         'Button1
  44.         '
  45.         Me.Button1.Location = New System.Drawing.Point(8, 16)
  46.         Me.Button1.Name = "Button1"
  47.         Me.Button1.Size = New System.Drawing.Size(112, 40)
  48.         Me.Button1.TabIndex = 0
  49.         Me.Button1.Text = "XML Reader and Writer"
  50.         '
  51.         'Button2
  52.         '
  53.         Me.Button2.Location = New System.Drawing.Point(8, 72)
  54.         Me.Button2.Name = "Button2"
  55.         Me.Button2.Size = New System.Drawing.Size(112, 40)
  56.         Me.Button2.TabIndex = 1
  57.         Me.Button2.Text = "XML DOM"
  58.         '
  59.         'Button3
  60.         '
  61.         Me.Button3.Location = New System.Drawing.Point(8, 128)
  62.         Me.Button3.Name = "Button3"
  63.         Me.Button3.Size = New System.Drawing.Size(112, 40)
  64.         Me.Button3.TabIndex = 2
  65.         Me.Button3.Text = "XML and DataSets"
  66.         '
  67.         'Button4
  68.         '
  69.         Me.Button4.Location = New System.Drawing.Point(8, 184)
  70.         Me.Button4.Name = "Button4"
  71.         Me.Button4.Size = New System.Drawing.Size(112, 40)
  72.         Me.Button4.TabIndex = 3
  73.         Me.Button4.Text = "Strongly-typed DataSet"
  74.         '
  75.         'StartupForm
  76.         '
  77.         Me.AutoScaleBaseSize = New System.Drawing.Size(7, 17)
  78.         Me.ClientSize = New System.Drawing.Size(136, 245)
  79.         Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Button4, Me.Button3, Me.Button2, Me.Button1})
  80.         Me.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  81.         Me.Name = "StartupForm"
  82.         Me.Text = "XML Demo"
  83.         Me.ResumeLayout(False)
  84.  
  85.     End Sub
  86.  
  87. #End Region
  88.  
  89.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  90.         Dim frm As New ReaderWriterForm()
  91.         frm.Show()
  92.     End Sub
  93.  
  94.     Private Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
  95.         Dim frm As New DomForm()
  96.         frm.Show()
  97.     End Sub
  98.  
  99.     Private Sub Button3_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button3.Click
  100.         Dim frm As New XmlDataSetForm()
  101.         frm.Show()
  102.     End Sub
  103.  
  104.     Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
  105.         Dim frm As New StronglyTypedDataSetForm()
  106.         frm.Show()
  107.     End Sub
  108. End Class
  109.